/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
}

/* Layout */
.vs-formWrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* two equal-width columns */
	gap: 0px 20px;
	/* space between rows and columns */
	width: 100%;
}

.vs-wrapper {
	display: flex;
	gap: 40px;
	margin: 0px 30px;
}

.rowNew {
	display: block;
	/* last definition wins */
	height: 130px;
	flex-direction: column;
	/* kept from earlier definition (harmless if display:block) */
}

.rowNew100 {
	grid-column: 1 / -1;
	/* kept from earlier definition */
	width: 100%;
	min-height: 60px;
}

.halfwidth {
	width: 50%;
	display: block;
	margin: 30px auto 0px auto;
}

.thumbnail-fluid {
	padding: 20px !important;
	/* from earlier */
	margin: 20px 0px 0px 0px;
	/* last shorthand wins */
}

.vs-alert {
	font-size: 13px !important;
	line-height: 18px !important;
}

.full-width {
	width: 100%;
	display: inline-block;
	margin: 20px auto 0px auto;
}

fieldset {
	border: none !important;
	margin: 0px;
	padding: 0px;

}

.floatcenter {
	display: block;
	margin: auto;

}

form {
	width: 100%;
}

#formcontainer {
	background-color: #f5f5f5;
	padding: 30px;
	/* last wins */
}

#formcontainer2 {
	background-color: #f5f5f5;
	padding: 15px;
	/* last wins */
}

/* Checkbox field css */
.vs-label-checkbox {
	position: relative !important;
}

.vs-form .vs-checkbox-group {
	height: auto;
	/* last wins */
}

.vs-form .vs-checkbox-group .vs-checkbox {
	position: absolute !important;
}

.vs-checkbox-icon {
	margin-right: 35px !important;
}

.vs-form {
	margin-bottom: 0px !important;
}

.vs-col-60 {
	flex: 0 0 calc(60% - 3px);
	/* last wins */
	max-width: calc(60% - 3px);
}

.vs-col-40 {
	flex: 0 0 calc(40% - 37px);
	/* last wins */
	max-width: calc(40% - 37px);
}

.vs-col-vs-60 {
	flex: 0 0 calc(60% - 10px);
	/* Subtract half the gap */
	max-width: calc(60% - 10px);
}

.vs-col-vs-40 {
	flex: 0 0 calc(40% - 60px);
	max-width: calc(40% - 60px);
}

.vs-vs-wrapper {
display: flex;
gap: 40px;
         
 }




/* Program section */
.program-card {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/* allow wrapping */
	max-width: 1140px;
	margin: 0;
	overflow: hidden;
}

.left-section {
	width: 60%;
	height: auto !important;
	flex: 0 0 60%;
	background-color: #1434cb;
	/* last wins */
}

.right-section {
	width: 40%;
	flex: 0 0 40%;
	display: flex;
	align-items: stretch;
}

.program-header {
	background-color: #1434cb;
	/* kept from earlier */
	padding: 30px;
	flex: 2;
	height: auto !important;
}

.program-section {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	height: 90px;
}

.program-summary {
	background-color: #cceeff;
	/* kept from earlier */
	padding: 20px 30px;
	flex: 1;
	height: auto !important;
}

.program-summary2 {
	background-color: #cceeff;
	padding: 20px 30px;
	flex: 1;
	height: auto !important;
}

.vs-col-sm-3,
.vs-col-sm-9 {
	display: flex;
	align-items: center;
}

/* Utilities */
.hide {
	display: none;
}

.header-logo {
	padding-top: 20px;
}

header {
	position: relative;
	line-height: 70px;
	display: block;
	border-bottom: 1px solid #eeeeee;
}

footer {
	display: block;
	margin: 70px 0;
}

.banner-img {
	width: 100% !important;
	height: 240px !important;
	/* last wins */
	object-fit: cover;
	display: block;
}

/* CUSTOM BANNER SECTION*/
.custom-container {
	max-width: 1100px;
	height: 290px;
	margin: 30px auto;
	overflow: hidden;
	display: flex;
}

.left-section {
	display: flex;
	flex-direction: column;
	width: 70%;
	min-width: 0;
}

.blue-top {
	background: #1434cb;
	color: #fff;
	flex: 2;
	display: flex;
	align-items: center;
	padding: 30px;
}

.lightblue-top {
	background: #c7edff;
	flex: 2;
	display: flex;
	align-items: center;
	padding: 30px;
	color: #1434cb;
}

.lightblue-bottom {
	background: #c7edff;
	flex: 1;
	max-height: 120px;
	padding: 30px;
}

.right-section {
	width: 30%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	overflow: hidden;
}

.right-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CUSTOM BANNER SECTION*/
/* Responsive */
@media all and (max-width: 1024px) {

	.rowNew,
	.rowNew100 {
		width: 100% !important;
		margin: 0px !important;
	}

	.banner-img {
		height: auto !important;
		width: 100% !important;
		object-fit: cover;
	}

	.program-card {
		display: flex;
		flex-direction: column;
	}

	.left-section,
	.right-section {
		width: 100% !important;
	}

	/* (kept from earlier media block; not duplicated in later one) */
	.vs-form .vs-checkbox-group {
		height: auto;
		position: relative;
	}

	.vs-col-60,
	.vs-col-40{
		max-width: 100% !important;
		display: inline-block !important;
		margin: 0px;
	}
     .vs-col-vs-60,
     .vs-col-vs-40,
     .vs-vs-wrapper {
         max-width: 100% !important;
         display: inline-block!important;
         margin: 0px;
         }  
	.vs-wrapper,.vs-vs-wrapper {
		display: block !important;
	}
}

@media all and (max-width: 800px) {

	.left-section,
	.right-section {
		height: auto !important;
		width: 100% !important;
		flex: 100% !important;
	}

	.rowNew100 {
		display: inline-block !important;
	}

	.program-card {
		display: block;
	}

	td,
	.program-section {
		display: block !important;
		margin: auto !important;
		height: auto;
	}

	.align_strong {
		top: 0px !important;
	}

	.vs-col-60,
	.vs-col-40,
	.vs-wrapper {
		max-width: 100% !important;
		display: inline-block !important;
		margin: 0px;
	}

	.formWrapper,
	.vs-formWrapper {
		display: block !important;
	}

	.vs-wrapper {
		display: block !important;
	}

	.hideElement {
		display: none !important;
	}

	.submit-button-style {
		width: 100% !important;
	}

	.mobilePadding2 {
		padding: 20px !important;
	}

	.thumbnail-fluid {
		padding: 20px 0px 0px 0px !important;
		margin: 0px !important;
	}

	.custom-container {
		flex-direction: column;
		height: auto;
		max-width: 100vw;
	}

	.left-section,
	.right-section {
		width: 100%;
		min-width: 0;
	}
}

@media all and (max-width: 765px) {
	.visa-logo {
		padding-left: 15px !important;
	}

	.halfwidth {
		width: 100% !important;
	}
}

@media all and (max-width: 480px) {
	.vs-formWrapper {
		display: block !important;
	}
}